Sort(Int32,Int32,IComparer<Appointment>) Method
In This Topic
Sorts the elements in a range of elements in AppointmentList using the specified comparer.
Syntax
'Declaration
Public Overloads Sub Sort( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Collections.Generic.IComparer(Of Appointment) _
)
public void Sort(
System.int ,
System.int ,
System.Collections.Generic.IComparer<Appointment>
)
Parameters
- index
- The zero-based starting index of the range to sort.
- count
- The length of the range to sort.
- comparer
- The IComparer{Appointment} implementation to use when comparing elements, or a null reference (Nothing in Visual Basic) to use the default comparer.
See Also